.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    
}
.table-data {
    width: 100%;
    max-width: 768px; /* Max width for desktop */
    min-height: 50em;
    background-color: #ffffff00; /* Box background */
    border: 2px solid #ccc; /* Box border */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Shadow for depth */
}
.table-data a {
    display: block;
    margin: 10px 0;
    padding: 10px;
    text-decoration: none;
    color: #0056b3;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
    background-color: #f4f4f4; /* Background for each link */
    transition: background 0.3s;
}
.table-data a:hover {
    background: #e0e0e0; /* Hover background */
}